Copying stuff from Vagrant box to Windows
Just a quick note
Why?
As I currently don't have time to set up a full fledged Jenkins build environment for artivity.online. So i decided to use a virtual machine created with vagrant to build a package locally. Now i just need to copy that damn thing from the virtual machine.
How?
With the git bash go into your vagrant directory and start the virtual machine. Then you can tell vagrant to create a ssh config file which you can use with scp.
$ vagrant ssh-config > vagrant.ssh.config
This config file contains all the path/port/host settings you need. You don't need to reference the full host, just specify the config entry you want to connect to.
$ scp -F vagrant.ssh.config default:~/test.txt .
Awesome!